home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PRINTER
/
AUFONT.ARJ
/
DOCPRINT.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-06-25
|
2KB
|
36 lines
echo off
cls
if exist AUTOFONT.DOC goto :message
echo ERROR: Cannot locate the order form file which is
echo named AUTOFONT.DOC. Please change to the drive or
echo directory which contains your AUTOFONT files, then
echo run the PRINTDOC.BAT file again.
goto :exit
:message
echo ┌─────────────────────────────────────────────────────────┐
echo │ The User's Guide for AFSW.EXE consists of 7 printed │
echo │ pages plus a 1-page descriptive chart. │
echo ├─────────────────────────────────────────────────────────┤
echo │ If you do not want to print this now, press Control-C │
echo │ and then press the Y key. │
echo │ Otherwise, this program will print the guide for you. │
echo ├─────────────────────────────────────────────────────────┤
echo │ │
echo │ Simply do the following: │
echo │ │
echo │ 1. Turn your printer ON │
echo │ 2. For laser printer, set @ 60 lines/page │
echo │ 3. Adjust the left margin to zero or 1 │
echo │ 4. Adjust the top line to the very top │
echo │ of the page │
echo │ 5. Press any key when ready to print, │
echo │ or type Ctrl-C now to abort... │
echo │ │
echo └─────────────────────────────────────────────────────────┘
pause > nul
echo ┌────────────────────────────────────┐
echo │ Printing AFSW.EXE USER'S GUIDE │
echo └────────────────────────────────────┘
type AUTOFONT.DOC > prn
echo Done.
cls